home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d21 / dvglue10.arc / TVIADD.C < prev    next >
C/C++ Source or Header  |  1988-08-13  |  521b  |  20 lines

  1. #include "tvapi.h"
  2.  
  3. /*=======================================================*/
  4. /* TVtimer_begin  set a new TopView timer interval       */
  5. /*  John Navas                                           */
  6. /*=======================================================*/
  7.  
  8. /* time: 1/100ths of a second from now */
  9.  
  10. void pascal TVtimer_begin(OBJECT timer, DWORD time)
  11. {
  12.         PARMLIST1 p;
  13.  
  14.         p.num_args = 1;
  15.     p.arg[0] = time;
  16.         TVsendmsg(ADDTO_MSG,TOS,timer,(PARMLIST *)&p);
  17. }
  18.  
  19. /* End of TVIADD.C */
  20.